home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILFILE / RUN.LZH / RUN.DOC next >
Text File  |  1988-04-11  |  2KB  |  52 lines

  1. What does RUN do?
  2. -----------------
  3. RUN is supposed to help you run other programs.  If you have a hard-disk,
  4. you generally need to change to the proper directory, run the program, and
  5. then change back to the original (or some other) directory.  You can
  6. also use the PATH command to specify where DOS should look for programs to
  7. run.  Unfortunately, some programs do not work when they are run from
  8. another directory.
  9.  
  10. RUN to the rescue!!!
  11.  
  12. RUN searches the disk for the program, changes to its directory, runs 
  13. it (optionally passing any parameters to the program), and then returns 
  14. to the original directory.
  15.  
  16. How to run RUN
  17. --------------
  18. Type:   RUN  program            --- to run program
  19.         RUN  d:program          --- to run the program located on drive d:
  20.         RUN  program.exe        --- to run a program with ext. of .EXE
  21.         RUN  \subdir\program    --- look for program in \subdir first
  22.         RUN  program a b c      --- run program and pass "a b c" as parameters.
  23.  
  24. RUN takes up about 25K of RAM only when you use it.  It is NOT a Terminate-
  25. and-Stay-Resident (TSR) program.  It does nothing to your computer other
  26. than run the program.  Once the program is complete, RUN is finished.
  27.  
  28. How to change RUN
  29. -----------------
  30. RUN is written in Turbo Pascal Version 4.0.  The source code is included
  31. in this ARC file, and you are free to change it, incorporate it into your
  32. own programs, do whatever with it.  As you can see, it makes use of
  33. Version 4.0's  EXEC  procedure to run other programs.
  34.  
  35. Copyright Stuff
  36. ---------------
  37. I wrote RUN with the sole intention of giving it away.  So you can do the
  38. same.  If you use it fine.  If you don't, oh well.  The only thing you 
  39. can't do is sell it for anything more than what a disk costs.  (So, all
  40. of you public domain distributors can go ahead and distribute this on
  41. a disk of utilities, if you want.)
  42.  
  43. I have tested the program, and it should not affect your computer or disk
  44. in any way.  If however, it does, I can't take responsibility.  I would
  45. like to know what happened, if something does happen, so I can inform
  46. Borland International that their compiler generates bad programs.
  47.  
  48. Mark Streich
  49. 4601-B Hope Valley Road
  50. Durham, NC 27707
  51.  
  52.